home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap12 / dun12_2.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  412 b   |  23 lines

  1. <HTML>
  2.  
  3. <HEAD>
  4.  
  5. <TITLE>absolute positioning</TITLE>
  6.  
  7. </HEAD>
  8.  
  9. <STYLE TYPE="text/css">
  10.  
  11. .myClass{
  12.  
  13.     POSITION: absolute;
  14.  
  15.     COLOR: red;
  16.  
  17.     TOP: 100px;
  18.  
  19.     LEFT: 100px;
  20.  
  21.     FONT-SIZE: 40pt;
  22.  
  23.     FONT-FAMILY: sans-serif
  24.  
  25.     }
  26.  
  27. </STYLE>
  28.  
  29. <BODY>
  30.  
  31. Some standard text before the element
  32.  
  33. <SPAN CLASS="myClass">
  34.  
  35. hello you
  36.  
  37. </SPAN>
  38.  
  39. Some standard text after the element
  40.  
  41. </BODY>
  42.  
  43. </HTML>
  44.  
  45.